home *** CD-ROM | disk | FTP | other *** search
Text File | 1992-08-30 | 1.2 KB | 42 lines | [TEXT/MPS ] |
- /* _________________________________________________________________________________________________________ //
- Copyright © 1992 Apple Computer, Inc. All rights reserved.
- Macintosh Developer Technical Support.C++ Macintosh Toolbox Framework.
- Date: Monday, August 10, 1992 1:17:29
- Revision comments are at the end of this file.
- ---
- TProcess is a Process Manager class.
- ProcessNV.cp contains the SLM constructor/destructor and other non-virtual function information.
- _________________________________________________________________________________________________________ */
-
-
- // Include files
- #ifndef _PROCESS_
- #include "Process.h"
- #endif
-
- #ifndef __LIBRARYMANAGERUTILITIES__
- #include <LibraryManagerUtilities.h>
- #endif
-
- // Library statements
- #pragma library id="slm:dtsl$", version=00.00.01
- #pragma class name=TProcess, id=kTProcessID, parent=kTDynamicID, flags=newobject
-
-
- // _________________________________________________________________________________________________________ //
- // TRandom class member function implementations
-
- // CONSTRUCTORS & DESTRUCTORS
-
- TProcess::TProcess()
- // Constructor, we are not doing anything inside this one just now.
- {
- }
-
-
- TProcess::~TProcess()
- // Destructor, we are not doing anything inside this one just now.
- {
- }
-
-